home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n11 / batch1.exe / COUNTLNS.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-09-17  |  218 b   |  12 lines

  1. @ECHO OFF
  2. REM This is COUNTLNS.BAT
  3. IF %1!==! GOTO OOPS
  4. ECHO Counting lines in
  5. FIND /C /V "!@#$" %1 
  6. GOTO END
  7. :OOPS
  8. ECHO Enter the name of the file 
  9. ECHO whose lines you want to 
  10. ECHO count after the %0
  11. :END
  12.